wikipathways Schema Extraction¶
This notebook extracts RDF schema from the wikipathways SPARQL endpoint. It attempts discovery of existing VoID (Vocabulary of Interlinked Datasets) metadata first, then generates VoID from queries if needed. All downstream outputs are generated from the VoID description.
Exports¶
- JSON-LD Schema (primary output)
- N-Quads RDF
- VoID Graph
- Coverage Report
- LinkML Schema
- Instance Data (subject index, object index, and instances in JSON Lines format)
InĀ [1]:
# Dataset Configuration
import os
# Dataset parameters
endpoint_url = "https://sparql.wikipathways.org/sparql/"
dataset_name = "wikipathways"
void_iri = "http://rdf.wikipathways.org/"
graph_uri = "http://rdf.wikipathways.org/"
# Setup paths
working_path = os.path.abspath("")
exports_path = os.path.join(
working_path, "..", "..", "docs", "data", "schema_extraction", dataset_name
)
os.makedirs(exports_path, exist_ok=True)
InĀ [2]:
import logging
import sys
# Minimal notebook logger using existing dataset_name
logger = logging.getLogger(dataset_name or "notebook")
logger.setLevel(logging.DEBUG) # Set to DEBUG to see SPARQL queries
# Also configure the rdfsolve.parser logger to see query details
parser_logger = logging.getLogger("rdfsolve.parser")
parser_logger.setLevel(logging.DEBUG)
# Avoid adding duplicate handlers if the cell is re-run
if not logger.handlers:
fmt = logging.Formatter("%(asctime)s %(levelname)s %(name)s: %(message)s", "%Y-%m-%d %H:%M:%S")
sh = logging.StreamHandler(sys.stdout)
sh.setLevel(logging.DEBUG) # Set to DEBUG to see all logs
sh.setFormatter(fmt)
logger.addHandler(sh)
# Add the same handler to the parser logger
parser_logger.addHandler(sh)
logger.info(f"Logging configured for {dataset_name}")
2026-01-16 13:39:18 INFO wikipathways: Logging configured for wikipathways
InĀ [3]:
# Import libraries
import json
# Configure Plotly for HTML output
import plotly.io as pio
import plotly.offline as pyo
from IPython.display import Markdown, display
# Import rdfsolve API functions
from rdfsolve.api import (
discover_void_graphs,
generate_void_from_endpoint,
load_parser_from_graph,
retrieve_void_from_graphs,
)
from rdfsolve.sparql_helper import SparqlHelper
# Enable query collection to track all SPARQL queries executed
SparqlHelper.enable_query_collection()
# Set renderer to 'notebook' for Jupyter, but ensure HTML export works
pio.renderers.default = "notebook+plotly_mimetype"
# Initialize offline mode for Plotly
pyo.init_notebook_mode(connected=True)
InĀ [4]:
# Pickle caching utilities
import os
import pickle
def save_cache(data, filename, cache_dir=None):
"""Save data to pickle cache."""
if cache_dir is None:
cache_dir = os.path.join(exports_path, "cache")
os.makedirs(cache_dir, exist_ok=True)
cache_path = os.path.join(cache_dir, f"{filename}.pkl")
with open(cache_path, "wb") as f:
pickle.dump(data, f)
print(f"Cached data to: {cache_path}")
return cache_path
def load_cache(filename, cache_dir=None):
"""Load data from pickle cache if it exists."""
if cache_dir is None:
cache_dir = os.path.join(exports_path, "cache")
cache_path = os.path.join(cache_dir, f"{filename}.pkl")
if os.path.exists(cache_path):
with open(cache_path, "rb") as f:
data = pickle.load(f)
print(f"Loaded cached data from: {cache_path}")
return data
return None
def cache_exists(filename, cache_dir=None):
"""Check if cache file exists."""
if cache_dir is None:
cache_dir = os.path.join(exports_path, "cache")
cache_path = os.path.join(cache_dir, f"{filename}.pkl")
return os.path.exists(cache_path)
InĀ [5]:
# Cache management utilities
def list_cache_files(cache_dir=None):
"""List all cache files."""
if cache_dir is None:
cache_dir = os.path.join(exports_path, "cache")
if not os.path.exists(cache_dir):
print("No cache directory found")
return []
cache_files = [f for f in os.listdir(cache_dir) if f.endswith(".pkl")]
print(f"Cache directory: {cache_dir}")
for f in cache_files:
file_path = os.path.join(cache_dir, f)
size_mb = os.path.getsize(file_path) / (1024 * 1024)
print(f" {f} ({size_mb:.2f} MB)")
return cache_files
def clear_cache(filename=None, cache_dir=None):
"""Clear specific cache file or all cache."""
if cache_dir is None:
cache_dir = os.path.join(exports_path, "cache")
if filename:
cache_path = os.path.join(cache_dir, f"{filename}.pkl")
if os.path.exists(cache_path):
os.remove(cache_path)
print(f"Removed cache: {filename}")
else:
print(f"Cache not found: {filename}")
else:
# Clear all cache files
if os.path.exists(cache_dir):
import shutil
shutil.rmtree(cache_dir)
print("Cleared all cache files")
else:
print("No cache directory to clear")
# Show current cache status
list_cache_files()
No cache directory found
Out[5]:
[]
Cache Control¶
Use these cells to manage cached data. When testing new code changes, you may want to clear relevant cache files to force re-computation.
InĀ [6]:
# Clear specific cache files (uncomment lines as needed for testing)
# When testing new VoID discovery/generation:
# clear_cache(f"{dataset_name}_voidgraph")
# When testing JSON-LD generation (primary output):
# clear_cache(f"{dataset_name}_jsonld_schema")
# When testing frequency calculations:
# clear_cache(f"{dataset_name}_frequencies_basic")
# clear_cache(f"{dataset_name}_frequencies_with_instances")
# Clear everything:
clear_cache()
print("Cache control ready")
print("Note: VoID graph and JSON-LD are the primary caches")
No cache directory to clear Cache control ready Note: VoID graph and JSON-LD are the primary caches
VoID Discovery¶
InĀ [7]:
cache_key = f"{dataset_name}_voidgraph"
void_graph = load_cache(cache_key)
if void_graph is None:
discovery_result = discover_void_graphs(
endpoint_url, graph_uris=[graph_uri] if graph_uri else None
)
found_graphs = discovery_result.get("found_graphs", [])
partitions = discovery_result.get("partitions", [])
if found_graphs and partitions:
print(f"Found {len(found_graphs)} VoID graphs with {len(partitions)} partitions")
void_graph = retrieve_void_from_graphs(
endpoint_url,
found_graphs,
graph_uris=[graph_uri] if graph_uri else None,
partitions=partitions,
)
void_path = os.path.join(exports_path, f"{dataset_name}_discovered_void.ttl")
void_graph.serialize(destination=void_path, format="turtle")
print(f"Saved discovered VoID to: {void_path}")
else:
print("No VoID found, generating from endpoint...")
void_graph = generate_void_from_endpoint(
endpoint_url=endpoint_url,
graph_uris=[graph_uri] if graph_uri else None,
output_file=os.path.join(exports_path, f"{dataset_name}_generated_void.ttl"),
counts=True,
offset_limit_steps=300,
exclude_graphs=True,
)
save_cache(void_graph, cache_key)
print(f"Cached VoID graph ({len(void_graph)} triples)")
else:
print(f"Loaded from cache ({len(void_graph)} triples)")
vp = load_parser_from_graph(void_graph, graph_uris=[graph_uri] if graph_uri else None)
2026-01-16 13:39:23 DEBUG rdfsolve.parser: Starting VoID partition discovery for https://sparql.wikipathways.org/sparql/
2026-01-16 13:39:23 INFO rdfsolve.parser: Discovering VoID partitions across all graphs
2026-01-16 13:39:23 DEBUG rdfsolve.parser: Discovery complete: found 0 graphs with VoID partitions
2026-01-16 13:39:23 DEBUG rdfsolve.parser: Collected 0 partition records
No VoID found, generating from endpoint... 2026-01-16 13:39:23 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:39:23 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
2026-01-16 13:39:23 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:39:23 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:39:23 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:39:23 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
2026-01-16 13:39:23 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:39:23 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:39:23 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:39:23 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
2026-01-16 13:39:23 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:39:23 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:39:23 INFO rdfsolve.parser: Executing CONSTRUCT query: class_partitions
2026-01-16 13:39:23 DEBUG rdfsolve.parser: Query text:
PREFIX void: <http://rdfs.org/ns/void#>
PREFIX void-ext: <http://ldf.fi/void-ext#>
CONSTRUCT {
?cp void:class ?class ;
void:entities ?count .
}
WHERE {
{
SELECT ?class (COUNT(?s) AS ?count)
WHERE {
GRAPH <http://rdf.wikipathways.org/> {
?s a ?class
}
}
GROUP BY ?class
LIMIT 300
}
BIND(IRI(CONCAT('http://rdf.wikipathways.org//void/class_partition_',
REPLACE(STR(?class), '[^a-zA-Z0-9_]', '_', 'g'))) AS ?cp)
}
2026-01-16 13:39:23 INFO rdfsolve.parser: Query class_partitions completed in 0.30s
2026-01-16 13:39:23 INFO rdfsolve.parser: Executing CONSTRUCT query: property_partitions
2026-01-16 13:39:23 DEBUG rdfsolve.parser: Query text:
PREFIX void: <http://rdfs.org/ns/void#>
PREFIX void-ext: <http://ldf.fi/void-ext#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
CONSTRUCT {
?pp void:property ?property ;
void:triples ?count ;
void-ext:subjectClass ?subject_class ;
void-ext:objectClass ?object_class .
}
WHERE {
{
SELECT ?property ?subject_class ?object_class (COUNT(*) AS ?count)
WHERE {
GRAPH <http://rdf.wikipathways.org/> {
?subject ?property ?object .
?subject rdf:type ?subject_class .
}
# Determine object class based on object type
{
BIND(rdfs:Literal AS ?object_class)
FILTER(isLiteral(?object))
}
UNION
{
?object rdf:type ?object_class .
FILTER(isURI(?object))
}
UNION
{
BIND(rdfs:Resource AS ?object_class)
FILTER(isURI(?object))
FILTER NOT EXISTS { ?object rdf:type ?any_type }
}
}
GROUP BY ?property ?subject_class ?object_class
LIMIT 300
}
BIND(IRI(CONCAT('http://rdf.wikipathways.org//void/property_partition_',
REPLACE(CONCAT(STR(?property), '_', STR(?subject_class), '_', STR(?object_class)), '[^a-zA-Z0-9_]', '_', 'g'))) AS ?pp)
}
2026-01-16 13:39:26 INFO rdfsolve.parser: Query property_partitions completed in 2.09s
2026-01-16 13:39:26 INFO rdfsolve.parser: Executing CONSTRUCT query: datatype_partitions
2026-01-16 13:39:26 DEBUG rdfsolve.parser: Query text:
PREFIX void: <http://rdfs.org/ns/void#>
PREFIX void-ext: <http://ldf.fi/void-ext#>
CONSTRUCT {
?dp void-ext:datatypePartition ?datatype ;
void:triples ?count .
}
WHERE {
{
SELECT ?datatype (COUNT(?s) AS ?count)
WHERE {
GRAPH <http://rdf.wikipathways.org/> {
?s ?p ?o .
FILTER(isLiteral(?o))
BIND(datatype(?o) AS ?datatype)
}
}
GROUP BY ?datatype
}
BIND(IRI(CONCAT('http://rdf.wikipathways.org//void/datatype_partition_',
REPLACE(STR(?datatype), '[^a-zA-Z0-9_]', '_', 'g'))) AS ?dp)
}
2026-01-16 13:40:02 INFO rdfsolve.parser: Query datatype_partitions completed in 36.04s
2026-01-16 13:40:02 INFO rdfsolve.parser: Successfully extracted 1303 RDF triples
2026-01-16 13:40:02 DEBUG rdfsolve.parser: Enriching VoID graph with bioregistry prefixes
2026-01-16 13:40:02 DEBUG rdfsolve.parser: Collected 449 unique URIs from VoID graph
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: gpml -> http://vocabularies.wikipathways.org/gpml#
DEBUG:rdfsolve.parser:Bioregistry: gpml -> http://vocabularies.wikipathways.org/gpml#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: foaf -> http://xmlns.com/foaf/0.1/
DEBUG:rdfsolve.parser:Bioregistry: foaf -> http://xmlns.com/foaf/0.1/
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: rdf -> http://www.w3.org/1999/02/22-rdf-syntax-ns#
DEBUG:rdfsolve.parser:Bioregistry: rdf -> http://www.w3.org/1999/02/22-rdf-syntax-ns#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: dcterms -> http://purl.org/dc/terms/
DEBUG:rdfsolve.parser:Bioregistry: dcterms -> http://purl.org/dc/terms/
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: void -> http://rdfs.org/ns/void#
DEBUG:rdfsolve.parser:Bioregistry: void -> http://rdfs.org/ns/void#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: cito -> http://purl.org/spar/cito/
DEBUG:rdfsolve.parser:Bioregistry: cito -> http://purl.org/spar/cito/
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: skos -> http://www.w3.org/2004/02/skos/core#
DEBUG:rdfsolve.parser:Bioregistry: skos -> http://www.w3.org/2004/02/skos/core#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: gpml -> http://vocabularies.wikipathways.org/gpml#
DEBUG:rdfsolve.parser:Bioregistry: gpml -> http://vocabularies.wikipathways.org/gpml#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: xsd -> http://www.w3.org/2001/XMLSchema#
DEBUG:rdfsolve.parser:Bioregistry: xsd -> http://www.w3.org/2001/XMLSchema#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: void -> http://rdfs.org/ns/void#
DEBUG:rdfsolve.parser:Bioregistry: void -> http://rdfs.org/ns/void#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: dc -> http://purl.org/dc/elements/1.1/
DEBUG:rdfsolve.parser:Bioregistry: dc -> http://purl.org/dc/elements/1.1/
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: gpml -> http://vocabularies.wikipathways.org/gpml#
DEBUG:rdfsolve.parser:Bioregistry: gpml -> http://vocabularies.wikipathways.org/gpml#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: gpml -> http://vocabularies.wikipathways.org/gpml#
DEBUG:rdfsolve.parser:Bioregistry: gpml -> http://vocabularies.wikipathways.org/gpml#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: gpml -> http://vocabularies.wikipathways.org/gpml#
DEBUG:rdfsolve.parser:Bioregistry: gpml -> http://vocabularies.wikipathways.org/gpml#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: oboinowl -> http://www.geneontology.org/formats/oboInOwl#
DEBUG:rdfsolve.parser:Bioregistry: oboinowl -> http://www.geneontology.org/formats/oboInOwl#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: owl -> http://www.w3.org/2002/07/owl#
DEBUG:rdfsolve.parser:Bioregistry: owl -> http://www.w3.org/2002/07/owl#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: void -> http://rdfs.org/ns/void#
DEBUG:rdfsolve.parser:Bioregistry: void -> http://rdfs.org/ns/void#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: owl -> http://www.w3.org/2002/07/owl#
DEBUG:rdfsolve.parser:Bioregistry: owl -> http://www.w3.org/2002/07/owl#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: foaf -> http://xmlns.com/foaf/0.1/
DEBUG:rdfsolve.parser:Bioregistry: foaf -> http://xmlns.com/foaf/0.1/
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: owl -> http://www.w3.org/2002/07/owl#
DEBUG:rdfsolve.parser:Bioregistry: owl -> http://www.w3.org/2002/07/owl#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: void -> http://rdfs.org/ns/void#
DEBUG:rdfsolve.parser:Bioregistry: void -> http://rdfs.org/ns/void#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: gpml -> http://vocabularies.wikipathways.org/gpml#
DEBUG:rdfsolve.parser:Bioregistry: gpml -> http://vocabularies.wikipathways.org/gpml#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: gpml -> http://vocabularies.wikipathways.org/gpml#
DEBUG:rdfsolve.parser:Bioregistry: gpml -> http://vocabularies.wikipathways.org/gpml#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: skos -> http://www.w3.org/2004/02/skos/core#
DEBUG:rdfsolve.parser:Bioregistry: skos -> http://www.w3.org/2004/02/skos/core#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: owl -> http://www.w3.org/2002/07/owl#
DEBUG:rdfsolve.parser:Bioregistry: owl -> http://www.w3.org/2002/07/owl#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: dc -> http://purl.org/dc/elements/1.1/
DEBUG:rdfsolve.parser:Bioregistry: dc -> http://purl.org/dc/elements/1.1/
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: void -> http://rdfs.org/ns/void#
DEBUG:rdfsolve.parser:Bioregistry: void -> http://rdfs.org/ns/void#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: xsd -> http://www.w3.org/2001/XMLSchema#
DEBUG:rdfsolve.parser:Bioregistry: xsd -> http://www.w3.org/2001/XMLSchema#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: oboinowl -> http://www.geneontology.org/formats/oboInOwl#
DEBUG:rdfsolve.parser:Bioregistry: oboinowl -> http://www.geneontology.org/formats/oboInOwl#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: xsd -> http://www.w3.org/2001/XMLSchema#
DEBUG:rdfsolve.parser:Bioregistry: xsd -> http://www.w3.org/2001/XMLSchema#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: gpml -> http://vocabularies.wikipathways.org/gpml#
DEBUG:rdfsolve.parser:Bioregistry: gpml -> http://vocabularies.wikipathways.org/gpml#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: rdfs -> http://www.w3.org/2000/01/rdf-schema#
DEBUG:rdfsolve.parser:Bioregistry: rdfs -> http://www.w3.org/2000/01/rdf-schema#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: dcterms -> http://purl.org/dc/terms/
DEBUG:rdfsolve.parser:Bioregistry: dcterms -> http://purl.org/dc/terms/
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: dcterms -> http://purl.org/dc/terms/
DEBUG:rdfsolve.parser:Bioregistry: dcterms -> http://purl.org/dc/terms/
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: xsd -> http://www.w3.org/2001/XMLSchema#
DEBUG:rdfsolve.parser:Bioregistry: xsd -> http://www.w3.org/2001/XMLSchema#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: owl -> http://www.w3.org/2002/07/owl#
DEBUG:rdfsolve.parser:Bioregistry: owl -> http://www.w3.org/2002/07/owl#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: gpml -> http://vocabularies.wikipathways.org/gpml#
DEBUG:rdfsolve.parser:Bioregistry: gpml -> http://vocabularies.wikipathways.org/gpml#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: void -> http://rdfs.org/ns/void#
DEBUG:rdfsolve.parser:Bioregistry: void -> http://rdfs.org/ns/void#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: gpml -> http://vocabularies.wikipathways.org/gpml#
DEBUG:rdfsolve.parser:Bioregistry: gpml -> http://vocabularies.wikipathways.org/gpml#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: owl -> http://www.w3.org/2002/07/owl#
DEBUG:rdfsolve.parser:Bioregistry: owl -> http://www.w3.org/2002/07/owl#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: gpml -> http://vocabularies.wikipathways.org/gpml#
DEBUG:rdfsolve.parser:Bioregistry: gpml -> http://vocabularies.wikipathways.org/gpml#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: void -> http://rdfs.org/ns/void#
DEBUG:rdfsolve.parser:Bioregistry: void -> http://rdfs.org/ns/void#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: dcat -> http://www.w3.org/ns/dcat#
DEBUG:rdfsolve.parser:Bioregistry: dcat -> http://www.w3.org/ns/dcat#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: foaf -> http://xmlns.com/foaf/0.1/
DEBUG:rdfsolve.parser:Bioregistry: foaf -> http://xmlns.com/foaf/0.1/
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: gpml -> http://vocabularies.wikipathways.org/gpml#
DEBUG:rdfsolve.parser:Bioregistry: gpml -> http://vocabularies.wikipathways.org/gpml#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: void -> http://rdfs.org/ns/void#
DEBUG:rdfsolve.parser:Bioregistry: void -> http://rdfs.org/ns/void#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: gpml -> http://vocabularies.wikipathways.org/gpml#
DEBUG:rdfsolve.parser:Bioregistry: gpml -> http://vocabularies.wikipathways.org/gpml#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: void -> http://rdfs.org/ns/void#
DEBUG:rdfsolve.parser:Bioregistry: void -> http://rdfs.org/ns/void#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: xsd -> http://www.w3.org/2001/XMLSchema#
DEBUG:rdfsolve.parser:Bioregistry: xsd -> http://www.w3.org/2001/XMLSchema#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: skos -> http://www.w3.org/2004/02/skos/core#
DEBUG:rdfsolve.parser:Bioregistry: skos -> http://www.w3.org/2004/02/skos/core#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: foaf -> http://xmlns.com/foaf/0.1/
DEBUG:rdfsolve.parser:Bioregistry: foaf -> http://xmlns.com/foaf/0.1/
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: dcterms -> http://purl.org/dc/terms/
DEBUG:rdfsolve.parser:Bioregistry: dcterms -> http://purl.org/dc/terms/
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: gpml -> http://vocabularies.wikipathways.org/gpml#
DEBUG:rdfsolve.parser:Bioregistry: gpml -> http://vocabularies.wikipathways.org/gpml#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: owl -> http://www.w3.org/2002/07/owl#
DEBUG:rdfsolve.parser:Bioregistry: owl -> http://www.w3.org/2002/07/owl#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: dcat -> http://www.w3.org/ns/dcat#
DEBUG:rdfsolve.parser:Bioregistry: dcat -> http://www.w3.org/ns/dcat#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: owl -> http://www.w3.org/2002/07/owl#
DEBUG:rdfsolve.parser:Bioregistry: owl -> http://www.w3.org/2002/07/owl#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: void -> http://rdfs.org/ns/void#
DEBUG:rdfsolve.parser:Bioregistry: void -> http://rdfs.org/ns/void#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: xsd -> http://www.w3.org/2001/XMLSchema#
DEBUG:rdfsolve.parser:Bioregistry: xsd -> http://www.w3.org/2001/XMLSchema#
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Bioregistry: void -> http://rdfs.org/ns/void#
DEBUG:rdfsolve.parser:Bioregistry: void -> http://rdfs.org/ns/void#
2026-01-16 13:40:05 INFO rdfsolve.parser: Discovered 13 prefixes
INFO:rdfsolve.parser:Discovered 13 prefixes
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Skipping gpml -> http://vocabularies.wikipathways.org/gpml# (already bound as gpml)
DEBUG:rdfsolve.parser:Skipping gpml -> http://vocabularies.wikipathways.org/gpml# (already bound as gpml)
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Skipping foaf -> http://xmlns.com/foaf/0.1/ (already bound as foaf)
DEBUG:rdfsolve.parser:Skipping foaf -> http://xmlns.com/foaf/0.1/ (already bound as foaf)
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Skipping rdf -> http://www.w3.org/1999/02/22-rdf-syntax-ns# (already bound as rdf)
DEBUG:rdfsolve.parser:Skipping rdf -> http://www.w3.org/1999/02/22-rdf-syntax-ns# (already bound as rdf)
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Skipping dcterms -> http://purl.org/dc/terms/ (already bound as dcterms)
DEBUG:rdfsolve.parser:Skipping dcterms -> http://purl.org/dc/terms/ (already bound as dcterms)
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Skipping void -> http://rdfs.org/ns/void# (already bound as void)
DEBUG:rdfsolve.parser:Skipping void -> http://rdfs.org/ns/void# (already bound as void)
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Skipping cito -> http://purl.org/spar/cito/ (already bound as ns14)
DEBUG:rdfsolve.parser:Skipping cito -> http://purl.org/spar/cito/ (already bound as ns14)
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Skipping skos -> http://www.w3.org/2004/02/skos/core# (already bound as skos)
DEBUG:rdfsolve.parser:Skipping skos -> http://www.w3.org/2004/02/skos/core# (already bound as skos)
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Skipping xsd -> http://www.w3.org/2001/XMLSchema# (already bound as xsd)
DEBUG:rdfsolve.parser:Skipping xsd -> http://www.w3.org/2001/XMLSchema# (already bound as xsd)
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Skipping dc -> http://purl.org/dc/elements/1.1/ (already bound as dc)
DEBUG:rdfsolve.parser:Skipping dc -> http://purl.org/dc/elements/1.1/ (already bound as dc)
2026-01-16 13:40:05 DEBUG rdfsolve.parser: Skipping oboinowl -> http://www.geneontology.org/formats/oboInOwl# (already bound as obo)
DEBUG:rdfsolve.parser:Skipping oboinowl -> http://www.geneontology.org/formats/oboInOwl# (already bound as obo)
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Skipping owl -> http://www.w3.org/2002/07/owl# (already bound as owl)
DEBUG:rdfsolve.parser:Skipping owl -> http://www.w3.org/2002/07/owl# (already bound as owl)
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Skipping rdfs -> http://www.w3.org/2000/01/rdf-schema# (already bound as rdfs)
DEBUG:rdfsolve.parser:Skipping rdfs -> http://www.w3.org/2000/01/rdf-schema# (already bound as rdfs)
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Skipping dcat -> http://www.w3.org/ns/dcat# (already bound as ns12)
DEBUG:rdfsolve.parser:Skipping dcat -> http://www.w3.org/ns/dcat# (already bound as ns12)
2026-01-16 13:40:06 INFO rdfsolve.parser: VoID description saved to /home/javi/rdfsolve-1/notebooks/01_schema_extraction/../../docs/data/schema_extraction/wikipathways/wikipathways_generated_void.ttl
INFO:rdfsolve.parser:VoID description saved to /home/javi/rdfsolve-1/notebooks/01_schema_extraction/../../docs/data/schema_extraction/wikipathways/wikipathways_generated_void.ttl
Cached data to: /home/javi/rdfsolve-1/notebooks/01_schema_extraction/../../docs/data/schema_extraction/wikipathways/cache/wikipathways_voidgraph.pkl Cached VoID graph (1303 triples)
Schema Discovery and Exports Workflow¶
Workflow Steps:¶
- VoID Discovery: Extract schema patterns from SPARQL endpoint VoID descriptions
- JSON-LD Generation: Convert to JSON-LD.
- Derived Outputs: All other formats are generated from the JSON-LD structure:
- Frequencies: Schema pattern coverage analysis
- LinkML: LinkML YAML used elsewhere for other features.
- CSV/JSON: Tabular and structured data exports
- RDF: N-Quads serialization for triplestore import
InĀ [8]:
# Primary JSON-LD schema export and basic summary
cache_key = f"{dataset_name}_jsonld_schema"
jsonld_schema = load_cache(cache_key)
if jsonld_schema is None:
print("Generating JSON-LD schema...")
jsonld_schema = vp.to_jsonld(filter_void_admin_nodes=True)
save_cache(jsonld_schema, cache_key)
else:
print("Loaded JSON-LD schema from cache")
# Save JSON-LD schema file
jsonld_file = os.path.join(exports_path, f"{dataset_name}_schema.jsonld")
with open(jsonld_file, "w", encoding="utf-8") as f:
json.dump(jsonld_schema, f, indent=2, ensure_ascii=False)
print(f"JSON-LD Schema saved to: {jsonld_file}")
# Display combined JSON-LD structure info and schema summary
if "@graph" in jsonld_schema:
print("\nSchema Summary:")
print(f" ⢠Prefixes: {len(jsonld_schema['@context'])}")
print(f" ⢠Resources: {len(jsonld_schema['@graph'])}")
# Show dataset metadata
dataset_info = jsonld_schema["@graph"][0] if jsonld_schema["@graph"] else {}
if dataset_info.get("@type") == "void:Dataset":
print(f" ⢠Dataset: {dataset_info.get('dcterms:title', 'Unknown')}")
print(f" ⢠Classes: {dataset_info.get('void:classes', 0)}")
print(f" ⢠Properties: {dataset_info.get('void:properties', 0)}")
print(f" ⢠Triples: {dataset_info.get('void:triples', 0)}")
# Get schema DataFrame and show sample
schema_df = vp.to_schema(filter_void_admin_nodes=True)
print(f"\nSchema Patterns Preview ({len(schema_df)} total):")
display(schema_df.head())
Loaded cached data from: /home/javi/rdfsolve-1/notebooks/01_schema_extraction/../../docs/data/schema_extraction/wikipathways/cache/wikipathways_jsonld_schema.pkl Loaded JSON-LD schema from cache JSON-LD Schema saved to: /home/javi/rdfsolve-1/notebooks/01_schema_extraction/../../docs/data/schema_extraction/wikipathways/wikipathways_schema.jsonld Schema Summary: ⢠Prefixes: 13 ⢠Resources: 38 2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Translocation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Translocation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:06 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ontologyTag: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ontologyTag: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbInChIKey: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbInChIKey: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbLipidMaps: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbLipidMaps: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChemspider: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChemspider: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
Schema Patterns Preview (292 total):
| subject_class | subject_uri | property | property_uri | object_class | object_uri | |
|---|---|---|---|---|---|---|
| 0 | wp:Complex | http://vocabularies.wikipathways.org/wp#Complex | wp:bdbReactome | http://vocabularies.wikipathways.org/wp#bdbRea... | wp:Protein | http://vocabularies.wikipathways.org/wp#Protein |
| 1 | wp:Protein | http://vocabularies.wikipathways.org/wp#Protein | wp:bdbReactome | http://vocabularies.wikipathways.org/wp#bdbRea... | wp:Complex | http://vocabularies.wikipathways.org/wp#Complex |
| 2 | wp:Metabolite | http://vocabularies.wikipathways.org/wp#Metabo... | wp:bdbReactome | http://vocabularies.wikipathways.org/wp#bdbRea... | wp:Protein | http://vocabularies.wikipathways.org/wp#Protein |
| 3 | wp:Interaction | http://vocabularies.wikipathways.org/wp#Intera... | wp:bdbReactome | http://vocabularies.wikipathways.org/wp#bdbRea... | wp:Pathway | http://vocabularies.wikipathways.org/wp#Pathway |
| 4 | wp:DataNode | http://vocabularies.wikipathways.org/wp#DataNode | wp:bdbReactome | http://vocabularies.wikipathways.org/wp#bdbRea... | wp:Metabolite | http://vocabularies.wikipathways.org/wp#Metabo... |
Schema Pattern Coverage Analysis¶
Calculate coverage ratios showing what percentage of entities use each relationship pattern.
InĀ [9]:
# Schema pattern coverage analysis and export
cache_key = f"{dataset_name}_frequencies_basic"
cached_data = load_cache(cache_key)
if cached_data is None:
print("Calculating schema pattern frequencies...")
frequencies_df, _ = vp.count_schema_shape_frequencies(
endpoint_url=endpoint_url,
offset_limit_steps=300,
)
save_cache(frequencies_df, cache_key)
else:
print("Loaded frequencies DataFrame from cache")
frequencies_df = cached_data
# Export coverage analysis
frequencies_output_path = os.path.join(exports_path, f"{dataset_name}_pattern_coverage.csv")
exported_df = vp.export_schema_shape_frequencies(
frequencies_df, output_file=frequencies_output_path
)
# Combined summary and sample
if not frequencies_df.empty:
avg_coverage = frequencies_df["coverage_percent"].mean()
high_coverage = (frequencies_df["coverage_percent"] > 50).sum()
print("\nPattern Coverage Analysis:")
print(f" ⢠Total patterns: {len(frequencies_df)}")
print(f" ⢠Average coverage: {avg_coverage:.1f}%")
print(f" ⢠High coverage (>50%): {high_coverage}")
print(f" ⢠Exported to: {frequencies_output_path}")
print("\nSample Coverage Data:")
display(
frequencies_df[["subject_class", "property", "object_class", "coverage_percent"]].head()
)
print("\nCoverage Statistics:")
display(frequencies_df["coverage_percent"].describe())
else:
print("No frequency data available")
Calculating schema pattern frequencies... 2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:07 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Translocation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Translocation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:08 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ontologyTag: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ontologyTag: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbInChIKey: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbInChIKey: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbLipidMaps: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbLipidMaps: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChemspider: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChemspider: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:40:09 INFO rdfsolve.parser: Using chunked pagination for entity counts (step size: 300)
INFO:rdfsolve.parser:Using chunked pagination for entity counts (step size: 300)
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:09 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:09 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:10 DEBUG rdfsolve.parser: Chunked entity count: chunk 1, rows=45, total=45
DEBUG:rdfsolve.parser:Chunked entity count: chunk 1, rows=45, total=45
2026-01-16 13:40:10 INFO rdfsolve.parser: Chunked entity counting complete: 1 chunks, 45 total results
INFO:rdfsolve.parser:Chunked entity counting complete: 1 chunks, 45 total results
2026-01-16 13:40:10 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:10 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:10 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:10 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:10 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:10 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:10 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:10 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:11 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:11 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:11 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:11 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:11 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:11 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:11 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:11 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:11 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:11 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:11 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:11 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:11 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:11 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:11 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:11 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:11 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:11 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:11 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:11 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:11 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:11 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:11 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:11 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:13 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:13 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:13 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:13 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:13 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:13 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:13 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:13 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:13 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:13 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:13 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:13 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:13 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:13 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:13 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:13 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:13 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:13 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:13 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:13 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:27 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:27 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:27 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:27 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:29 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:29 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:29 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:29 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:29 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:29 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:29 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:29 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:30 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:30 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:30 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:30 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:32 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:32 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:32 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:32 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:33 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:33 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:33 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:33 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:33 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:33 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:33 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:33 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:33 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:33 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:33 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:33 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:34 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:34 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:34 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:34 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:34 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:34 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:34 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:34 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:34 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:34 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:34 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:34 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:34 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:34 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:34 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:34 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:34 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:34 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:34 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:34 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:34 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:34 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:34 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:34 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:40:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:40:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:40:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:40:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:00 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:00 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:00 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:00 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:07 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:07 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:07 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:07 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:08 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:08 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:08 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:08 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:09 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:09 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:09 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:09 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:10 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:10 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:10 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:10 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:10 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:10 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:10 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:10 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:11 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:11 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:11 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:11 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:11 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:11 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:11 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:11 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:11 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:11 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:11 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:11 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:11 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:11 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:11 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:11 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:12 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:12 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:12 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:12 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:16 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:16 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:16 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:16 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:17 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:17 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:17 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:17 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:18 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:18 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:18 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:18 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:18 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:18 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:18 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:18 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:19 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:19 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:19 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:19 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:19 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:19 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:19 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:19 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:19 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:19 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:19 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:19 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:19 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:19 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:19 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:19 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:19 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:19 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:19 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:19 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:19 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:19 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:19 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:19 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:29 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:29 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:29 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:29 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:30 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:30 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:30 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:30 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:30 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:30 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:30 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:30 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:31 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:31 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:31 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:31 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:31 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:31 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:31 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:31 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:31 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:31 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:31 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:31 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:31 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:31 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:31 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:31 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:31 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:31 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:31 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:31 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:32 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:32 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:32 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:32 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:33 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:33 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:33 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:33 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:33 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:33 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:33 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:33 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:35 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:35 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:35 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:35 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:35 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:35 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:35 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:35 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:35 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:35 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:35 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:35 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:45 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:45 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:45 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:45 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:45 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:45 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:45 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:45 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:45 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:45 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:45 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:45 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:41:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:41:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:41:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:41:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:42:15 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:42:15 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:42:15 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:42:15 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:42:17 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:42:17 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:42:17 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:42:17 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:42:17 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:42:17 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:42:17 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:42:17 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:42:18 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:42:18 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:42:18 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:42:18 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:42:18 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:42:18 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:42:18 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:42:18 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:42:19 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:42:19 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:42:19 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:42:19 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:42:19 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:42:19 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:42:19 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:42:19 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:42:24 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:42:24 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:42:24 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:42:24 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:42:25 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:42:25 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:42:25 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:42:25 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:42:27 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:42:27 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:42:27 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:42:27 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:42:28 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:42:28 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:42:28 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:42:28 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:42:28 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:42:28 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:42:28 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:42:28 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:42:29 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:42:29 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:42:29 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:42:29 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:42:36 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:42:36 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:42:36 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:42:36 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:42:36 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:42:36 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:42:36 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:42:36 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:42:38 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:42:38 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:42:38 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:42:38 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:42:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:42:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:42:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:42:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:42:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:42:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:42:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:42:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:42:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:42:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:42:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:42:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:42:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:42:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:42:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:42:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:42:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:42:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:42:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:42:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:42:41 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:42:41 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:42:41 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:42:41 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:42:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:42:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:42:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:42:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:42:50 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:42:50 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:42:50 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:42:50 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:42:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:42:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:42:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:42:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:43:09 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:43:09 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:43:09 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:43:09 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:43:09 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:43:09 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:43:09 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:43:09 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:43:10 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:43:10 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:43:10 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:43:10 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:43:12 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:43:12 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:43:12 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:43:12 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:43:12 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:43:12 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:43:12 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:43:12 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:43:14 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:43:14 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:43:14 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:43:14 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:43:17 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:43:17 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:43:17 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:43:17 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:43:17 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:43:17 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:43:17 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:43:17 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:43:18 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:43:18 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:43:18 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:43:18 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:43:19 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:43:19 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:43:19 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:43:19 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:43:20 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:43:20 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:43:20 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:43:20 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:43:37 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:43:37 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:43:37 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:43:37 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:43:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:43:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:43:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:43:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:43:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:43:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:43:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:43:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:43:51 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:43:51 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:43:51 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:43:51 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:43:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:43:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:43:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:43:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:43:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:43:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:43:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:43:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:43:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:43:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:43:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:43:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:43:54 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:43:54 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:43:54 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:43:54 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:43:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:43:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:43:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:43:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:43:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:43:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:43:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:43:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:43:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:43:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:43:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:43:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:43:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:43:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:43:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:43:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:43:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:43:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:43:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:43:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:43:58 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:43:58 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:43:58 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:43:58 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:43:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:43:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:43:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:43:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:43:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:43:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:43:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:43:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:05 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:05 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:05 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:05 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:06 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:06 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:06 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:06 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:06 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:06 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:06 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:06 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:06 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:06 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:06 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:06 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:06 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:06 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:06 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:06 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:07 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:07 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:07 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:07 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:07 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:07 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:07 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:07 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:07 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:07 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:07 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:07 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:07 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:07 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:07 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:07 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:12 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:12 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:12 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:12 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:12 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:12 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:12 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:12 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:12 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:12 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:12 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:12 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:17 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:17 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:17 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:17 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:17 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:17 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:17 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:17 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:17 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:17 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:17 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:17 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:22 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:22 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:22 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:22 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:23 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:23 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:23 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:23 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:23 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:23 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:23 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:23 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:23 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:23 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:23 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:23 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:24 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:24 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:24 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:24 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:24 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:24 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:24 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:24 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:24 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:24 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:24 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:24 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:36 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:36 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:36 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:36 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:37 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:37 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:37 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:37 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:37 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:37 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:37 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:37 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:37 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:37 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:37 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:37 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:38 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:38 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:38 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:38 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:42 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:42 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:42 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:42 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:42 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:42 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:42 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:42 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:51 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:51 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:51 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:51 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:52 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:52 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:52 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:52 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:52 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:52 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:52 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:52 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:52 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:52 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:52 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:52 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:52 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:52 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:52 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:52 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:52 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:52 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:52 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:52 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:52 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:52 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:52 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:52 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:54 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:54 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:54 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:54 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:58 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:58 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:58 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:58 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:44:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:44:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:44:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:44:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:45:10 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:45:10 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:45:10 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:45:10 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:45:11 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:45:11 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:45:11 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:45:11 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:45:11 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:45:11 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:45:11 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:45:11 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:45:13 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:45:13 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:45:13 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:45:13 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:45:18 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:45:18 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:45:18 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:45:18 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:46:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:46:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:46:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:46:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:46:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:46:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:46:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:46:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:47:13 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:47:13 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:47:13 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:47:13 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:47:38 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:47:38 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:47:38 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:47:38 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:47:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:47:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:47:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:47:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:47:49 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:47:49 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:47:49 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:47:49 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:47:54 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:47:54 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:47:54 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:47:54 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:47:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:47:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:47:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:47:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:47:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:47:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:47:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:47:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:01 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:01 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:01 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:01 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:02 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:02 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:02 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:02 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:03 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:03 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:03 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:03 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:05 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:05 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:05 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:05 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:05 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:05 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:05 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:05 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:05 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:05 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:05 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:05 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:05 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:05 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:05 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:05 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:06 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:06 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:06 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:06 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:06 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:06 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:06 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:06 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:06 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:06 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:06 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:06 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:06 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:06 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:06 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:06 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:06 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:06 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:06 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:06 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:07 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:07 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:07 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:07 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:07 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:07 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:07 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:07 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:07 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:07 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:07 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:07 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:08 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:08 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:08 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:08 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:08 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:08 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:08 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:08 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:08 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:08 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:08 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:08 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:08 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:08 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:08 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:08 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:08 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:08 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:08 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:08 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:08 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:08 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:08 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:08 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:11 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:11 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:11 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:11 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:12 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:12 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:12 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:12 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:12 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:12 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:12 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:12 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:13 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:13 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:13 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:13 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:13 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:13 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:13 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:13 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:13 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:13 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:13 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:13 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:13 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:13 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:13 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:13 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:13 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:13 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:13 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:13 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:13 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:13 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:13 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:13 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:13 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:13 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:13 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:13 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:13 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:13 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:13 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:13 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:13 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:13 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:13 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:13 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:13 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:13 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:13 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:13 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:13 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:13 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:13 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:13 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:14 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:14 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:14 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:14 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:14 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:14 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:14 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:14 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:14 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:14 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:14 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:14 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:14 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:14 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:14 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:14 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:14 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:14 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:14 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:14 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:14 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:14 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:14 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:14 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:14 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:14 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:14 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:14 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:14 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:14 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:14 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:14 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:15 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:15 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:15 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:15 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:18 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:18 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:18 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:18 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:18 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:18 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:18 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:18 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:19 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:19 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:19 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:19 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:19 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:19 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:19 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:19 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:19 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:19 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:19 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:19 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:19 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:19 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:19 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:19 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:19 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:19 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:19 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:19 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:20 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:20 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:20 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:20 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:22 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:22 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:22 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:22 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:22 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:22 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:22 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:22 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:23 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:23 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:23 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:23 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:26 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:26 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:26 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:26 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:26 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:26 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:26 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:26 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:26 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:26 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:26 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:26 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:30 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:30 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:30 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:30 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:30 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:30 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:30 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:30 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:30 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:30 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:30 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:30 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:32 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:32 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:32 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:32 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:49 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:49 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:49 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:49 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:49 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:49 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:49 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:49 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
Cached data to: /home/javi/rdfsolve-1/notebooks/01_schema_extraction/../../docs/data/schema_extraction/wikipathways/cache/wikipathways_frequencies_basic.pkl Pattern Coverage Analysis: ⢠Total patterns: 292 ⢠Average coverage: 25.5% ⢠High coverage (>50%): 66 ⢠Exported to: /home/javi/rdfsolve-1/notebooks/01_schema_extraction/../../docs/data/schema_extraction/wikipathways/wikipathways_pattern_coverage.csv Sample Coverage Data:
| subject_class | property | object_class | coverage_percent | |
|---|---|---|---|---|
| 248 | skos:Collection | foaf:img | foaf:Image | 100.0 |
| 202 | wp:Protein | rdf:type | owl:Class | 100.0 |
| 56 | wp:DirectedInteraction | wp:source | wp:DataNode | 100.0 |
| 58 | wp:Stimulation | wp:source | wp:DataNode | 100.0 |
| 203 | wp:Complex | rdf:type | owl:Class | 100.0 |
Coverage Statistics:
count 292.000000 mean 25.485514 std 35.616027 min 0.000000 25% 0.317500 50% 5.340000 75% 42.410000 max 100.000000 Name: coverage_percent, dtype: float64
Schema Pattern Instance Collection¶
Collect actual subject and object IRI instances for each schema pattern. This provides detailed access to the specific entities participating in each relationship pattern.
InĀ [10]:
# Collect both frequency data and actual instances with caching
cache_key = f"{dataset_name}_frequencies_with_instances"
cached_data = load_cache(cache_key)
if cached_data is None:
print("Collecting frequency data and instances...")
frequencies_with_instances_df, instances_df = vp.count_schema_shape_frequencies(
endpoint_url=endpoint_url,
# sample_limit=100, # Limited sample for demonstration
collect_instances=True,
offset_limit_steps=300,
)
# Cache both DataFrames as a tuple
save_cache((frequencies_with_instances_df, instances_df), cache_key)
else:
print("Loaded frequencies and instances DataFrames from cache")
frequencies_with_instances_df, instances_df = cached_data
# Display basic information about the data structure
print(f"Frequencies DataFrame: {len(frequencies_with_instances_df)} shapes")
if instances_df is not None:
print(f"Instances DataFrame: {len(instances_df)} relationships")
print(f"Memory usage: {instances_df.memory_usage(deep=True).sum() / 1024 / 1024:.1f} MB")
# Export instances in compact format
instances_prefix = os.path.join(exports_path, f"{dataset_name}_instances")
export_result = vp.export_instances_compact(instances_df, instances_prefix)
print(f"Exported instances: {export_result['total_relationships']} relationships")
print(f" ⢠Subject index: {export_result['total_subjects']} unique subjects")
print(f" ⢠Object index: {export_result['total_objects']} unique objects")
print(
f" ⢠Total size: {sum([export_result['subject_index_size_mb'], export_result['object_index_size_mb'], export_result['instances_jsonl_size_mb']]):.2f} MB"
)
else:
print("No instances collected")
Collecting frequency data and instances... 2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Translocation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Translocation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:53 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ontologyTag: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ontologyTag: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbInChIKey: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbInChIKey: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbLipidMaps: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbLipidMaps: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChemspider: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChemspider: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 13:48:54 INFO rdfsolve.parser: Using chunked pagination for entity counts (step size: 300)
INFO:rdfsolve.parser:Using chunked pagination for entity counts (step size: 300)
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:54 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:54 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:56 DEBUG rdfsolve.parser: Chunked entity count: chunk 1, rows=45, total=45
DEBUG:rdfsolve.parser:Chunked entity count: chunk 1, rows=45, total=45
2026-01-16 13:48:56 INFO rdfsolve.parser: Chunked entity counting complete: 1 chunks, 45 total results
INFO:rdfsolve.parser:Chunked entity counting complete: 1 chunks, 45 total results
2026-01-16 13:48:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:48:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:48:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:48:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:48:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:07 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:07 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:07 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:07 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:08 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:08 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:08 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:08 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:08 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:08 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:08 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:08 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:10 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:10 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:10 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:10 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:11 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:11 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:11 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:11 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:12 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:12 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:12 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:12 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:12 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:12 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:12 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:12 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:12 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:12 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:12 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:12 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:12 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:12 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:12 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:12 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:12 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:12 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:12 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:12 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:12 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:12 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:12 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:12 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:13 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:13 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:13 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:13 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:13 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:13 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:13 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:13 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:13 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:13 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:13 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:13 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:30 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:30 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:30 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:30 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:31 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:31 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:31 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:31 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:32 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:32 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:32 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:32 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:33 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:33 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:33 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:33 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:33 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:33 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:33 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:33 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:33 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:33 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:33 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:33 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:33 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:33 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:33 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:33 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:33 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:33 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:33 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:33 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:33 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:33 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:33 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:33 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:37 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:37 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:37 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:37 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:45 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:45 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:45 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:45 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:52 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:52 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:52 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:52 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:54 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:54 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:54 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:54 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:54 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:54 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:54 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:49:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:49:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:49:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:49:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:05 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:05 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:05 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:05 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:06 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:06 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:06 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:06 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:07 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:07 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:07 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:07 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:07 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:07 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:07 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:07 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:07 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:07 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:07 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:07 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:07 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:07 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:07 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:07 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:07 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:07 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:07 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:07 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:07 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:07 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:07 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:07 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:08 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:08 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:08 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:08 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:08 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:08 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:08 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:08 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:09 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:09 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:09 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:09 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:11 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:11 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:11 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:11 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:11 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:11 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:11 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:11 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:11 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:11 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:11 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:11 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:15 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:15 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:15 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:15 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:15 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:15 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:15 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:15 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:15 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:15 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:15 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:15 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:15 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:15 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:15 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:15 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:15 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:15 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:15 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:15 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:15 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:15 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:15 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:15 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:19 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:19 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:19 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:19 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:19 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:19 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:19 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:19 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:20 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:20 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:20 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:20 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:20 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:20 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:20 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:20 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:20 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:20 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:20 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:20 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:30 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:30 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:30 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:30 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:49 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:49 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:49 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:49 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:50 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:50 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:50 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:50 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:50 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:50 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:50 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:50 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:50 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:50 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:50 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:50 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:58 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:58 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:58 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:58 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:58 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:58 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:58 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:58 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:50:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:50:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:50:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:50:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:51:05 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:51:05 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:51:05 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:51:05 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:51:05 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:51:05 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:51:05 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:51:05 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:51:07 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:51:07 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:51:07 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:51:07 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:51:07 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:51:07 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:51:07 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:51:07 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:51:08 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:51:08 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:51:08 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:51:08 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:51:08 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:51:08 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:51:08 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:51:08 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:51:09 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:51:09 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:51:09 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:51:09 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:51:09 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:51:09 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:51:09 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:51:09 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:51:09 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:51:09 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:51:09 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:51:09 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:51:13 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:51:13 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:51:13 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:51:13 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:51:19 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:51:19 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:51:19 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:51:19 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:51:25 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:51:25 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:51:25 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:51:25 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:51:33 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:51:33 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:51:33 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:51:33 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:51:33 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:51:33 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:51:33 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:51:33 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:51:34 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:51:34 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:51:34 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:51:34 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:51:36 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:51:36 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:51:36 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:51:36 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:51:36 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:51:36 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:51:36 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:51:36 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:51:38 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:51:38 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:51:38 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:51:38 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:51:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:51:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:51:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:51:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:51:41 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:51:41 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:51:41 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:51:41 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:51:42 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:51:42 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:51:42 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:51:42 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:51:42 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:51:42 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:51:42 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:51:42 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:51:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:51:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:51:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:51:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:52:02 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:52:02 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:52:02 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:52:02 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:52:04 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:52:04 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:52:04 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:52:04 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:52:06 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:52:06 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:52:06 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:52:06 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:52:17 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:52:17 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:52:17 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:52:17 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:52:18 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:52:18 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:52:18 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:52:18 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:52:18 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:52:18 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:52:18 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:52:18 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:52:18 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:52:18 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:52:18 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:52:18 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:52:19 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:52:19 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:52:19 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:52:19 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:52:22 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:52:22 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:52:22 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:52:22 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:52:23 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:52:23 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:52:23 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:52:23 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:52:23 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:52:23 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:52:23 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:52:23 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:52:24 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:52:24 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:52:24 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:52:24 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:52:24 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:52:24 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:52:24 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:52:24 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:52:27 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:52:27 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:52:27 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:52:27 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:52:29 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:52:29 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:52:29 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:52:29 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:52:29 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:52:29 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:52:29 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:52:29 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:52:38 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:52:38 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:52:38 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:52:38 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:52:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:52:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:52:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:52:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:52:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:52:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:52:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:52:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:52:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:52:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:52:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:52:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:52:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:52:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:52:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:52:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:52:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:52:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:52:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:52:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:52:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:52:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:52:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:52:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:52:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:52:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:52:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:52:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:52:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:52:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:52:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:52:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:52:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:52:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:52:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:52:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:52:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:52:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:52:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:52:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:52:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:52:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:52:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:52:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:52:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:52:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:52:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:52:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:52:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:52:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:52:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:52:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:52:55 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:52:55 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:52:55 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:52:55 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:53:05 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:53:05 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:53:05 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:53:05 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:53:06 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:53:06 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:53:06 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:53:06 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:53:06 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:53:06 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:53:06 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:53:06 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:53:08 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:53:08 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:53:08 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:53:08 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:53:08 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:53:08 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:53:08 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:53:08 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:53:08 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:53:08 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:53:08 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:53:08 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:53:09 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:53:09 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:53:09 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:53:09 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:53:33 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:53:33 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:53:33 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:53:33 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:53:34 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:53:34 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:53:34 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:53:34 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:53:34 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:53:34 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:53:34 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:53:34 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:53:34 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:53:34 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:53:34 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:53:34 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:53:38 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:53:38 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:53:38 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:53:38 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:53:41 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:53:41 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:53:41 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:53:41 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:53:42 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:53:42 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:53:42 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:53:42 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:53:45 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:53:45 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:53:45 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:53:45 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:53:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:53:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:53:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:53:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:53:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:53:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:53:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:53:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:53:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:53:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:53:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:53:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:53:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:53:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:53:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:53:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:53:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:53:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:53:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:53:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:53:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:53:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:53:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:53:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:53:47 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:53:47 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:53:47 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:53:47 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:53:57 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:53:57 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:53:57 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:53:57 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:53:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:53:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:53:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:53:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:53:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:53:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:53:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:53:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:53:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:53:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:53:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:53:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:53:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:53:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:53:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:53:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:53:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:53:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:53:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:53:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:53:59 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:53:59 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:53:59 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:53:59 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:54:00 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:54:00 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:54:00 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:54:00 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:54:00 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:54:00 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:54:00 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:54:00 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:54:00 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:54:00 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:54:00 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:54:00 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:54:02 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:54:02 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:54:02 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:54:02 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:54:02 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:54:02 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:54:02 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:54:02 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:54:03 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:54:03 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:54:03 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:54:03 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:54:03 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:54:03 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:54:03 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:54:03 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:54:04 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:54:04 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:54:04 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:54:04 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:54:04 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:54:04 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:54:04 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:54:04 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:54:04 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:54:04 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:54:04 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:54:04 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:54:05 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:54:05 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:54:05 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:54:05 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:54:06 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:54:06 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:54:06 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:54:06 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:54:07 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:54:07 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:54:07 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:54:07 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:54:18 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:54:18 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:54:18 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:54:18 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:54:19 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:54:19 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:54:19 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:54:19 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:54:20 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:54:20 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:54:20 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:54:20 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:54:21 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:54:21 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:54:21 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:54:21 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:54:26 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:54:26 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:54:26 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:54:26 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:55:51 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:55:51 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:55:51 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:55:51 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:55:54 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:55:54 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:55:54 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:55:54 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:56:21 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:56:21 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:56:21 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:56:21 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:56:52 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:56:52 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:56:52 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:56:52 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:02 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:02 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:02 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:02 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:05 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:05 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:05 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:05 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:09 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:09 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:09 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:09 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:12 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:12 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:12 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:12 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:12 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:12 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:12 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:12 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:18 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:18 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:18 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:18 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:19 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:19 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:19 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:19 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:24 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:24 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:25 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:25 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:28 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:28 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:28 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:28 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:28 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:28 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:28 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:28 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:29 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:29 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:29 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:29 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:29 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:29 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:29 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:29 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:29 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:29 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:29 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:29 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:29 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:29 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:29 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:29 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:29 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:29 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:29 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:29 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:29 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:29 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:29 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:29 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:30 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:30 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:30 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:30 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:32 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:32 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:32 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:32 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:32 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:32 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:32 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:32 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:32 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:32 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:32 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:32 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:32 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:32 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:32 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:32 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:32 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:32 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:32 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:32 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:33 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:33 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:33 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:33 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:33 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:33 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:33 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:33 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:33 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:33 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:33 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:33 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:33 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:33 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:33 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:33 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:36 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:36 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:36 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:36 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:38 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:38 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:38 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:38 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:38 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:38 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:38 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:38 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:39 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:39 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:40 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:40 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:40 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:40 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:41 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:41 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:41 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:41 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:43 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:43 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:43 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:43 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:44 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:44 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:44 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:44 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:45 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:45 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:45 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:45 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:45 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:45 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:45 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:45 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:45 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:45 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:45 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:45 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:45 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:45 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:45 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:45 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:46 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:46 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:46 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:46 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:48 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:48 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:48 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:48 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:49 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:49 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:49 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:49 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:49 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:49 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:49 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:49 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:52 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:52 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:52 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:52 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:53 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:53 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:53 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:53 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:56 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:56 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:56 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:56 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:57:58 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:57:58 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:57:58 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:57:58 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:58:13 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:58:13 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:58:13 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:58:13 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:58:14 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:58:14 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:58:14 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:58:14 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:58:14 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:58:14 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:58:14 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:58:14 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:58:14 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:58:14 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:58:14 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:58:14 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:58:14 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:58:14 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:58:14 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:58:14 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:58:14 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:58:14 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:58:14 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:58:14 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:58:14 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:58:15 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:58:15 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:58:15 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:58:15 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:58:15 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:58:15 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:58:15 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:58:15 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:58:15 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:58:15 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:58:15 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:58:15 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:58:15 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:58:15 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:58:15 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:58:16 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:58:16 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:58:16 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:58:16 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:58:16 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:58:16 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:58:16 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:58:16 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:58:19 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:58:19 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:58:19 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:58:19 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:58:20 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:58:20 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:58:20 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:58:20 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:58:20 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:58:20 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:58:20 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:58:20 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:58:20 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:58:20 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:58:20 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:58:20 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:58:20 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:58:20 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:58:20 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:58:20 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:58:20 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:58:20 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:58:20 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:58:20 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:58:20 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:58:20 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:58:20 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:58:20 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:58:20 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:58:20 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:58:20 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:58:20 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:58:20 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:58:20 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:58:20 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:58:20 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:58:20 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:58:20 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:58:20 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:58:20 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:58:21 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:58:21 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:58:21 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:58:21 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:58:21 DEBUG rdfsolve.parser: Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
DEBUG:rdfsolve.parser:Replacing graph clause, graph_uris=['http://rdf.wikipathways.org/']
2026-01-16 13:58:21 DEBUG rdfsolve.parser: Query has #GRAPH_CLAUSE: True
DEBUG:rdfsolve.parser:Query has #GRAPH_CLAUSE: True
2026-01-16 13:58:21 DEBUG rdfsolve.parser: Single graph: GRAPH <http://rdf.wikipathways.org/> {
DEBUG:rdfsolve.parser:Single graph: GRAPH <http://rdf.wikipathways.org/> {
2026-01-16 13:58:21 DEBUG rdfsolve.parser: After replacement has #GRAPH_CLAUSE: False
DEBUG:rdfsolve.parser:After replacement has #GRAPH_CLAUSE: False
2026-01-16 13:58:26 INFO rdfsolve.parser: Total instances collected: 1821835
INFO:rdfsolve.parser:Total instances collected: 1821835
Cached data to: /home/javi/rdfsolve-1/notebooks/01_schema_extraction/../../docs/data/schema_extraction/wikipathways/cache/wikipathways_frequencies_with_instances.pkl Frequencies DataFrame: 292 shapes Instances DataFrame: 1821835 relationships
Memory usage: 406.5 MB
Exported instances: 1821835 relationships ⢠Subject index: 527740 unique subjects ⢠Object index: 221867 unique objects ⢠Total size: 453.92 MB
InĀ [11]:
# Export instances in compact format
if instances_df is not None:
instances_prefix = os.path.join(exports_path, f"{dataset_name}_instances")
export_result = vp.export_instances_compact(instances_df, instances_prefix)
print(f"\nExported instances: {export_result['total_relationships']} relationships")
print(f" ⢠Subject index: {export_result['total_subjects']} unique subjects")
print(f" ⢠Object index: {export_result['total_objects']} unique objects")
print(
f" ⢠Total size: {sum([export_result['subject_index_size_mb'], export_result['object_index_size_mb'], export_result['instances_jsonl_size_mb']]):.2f} MB"
)
Exported instances: 1821835 relationships ⢠Subject index: 527740 unique subjects ⢠Object index: 221867 unique objects ⢠Total size: 453.92 MB
InĀ [12]:
import pandas as pd
import plotly.graph_objects as go
if not frequencies_with_instances_df.empty:
df = frequencies_with_instances_df.copy()
df["coverage_percent"] = pd.to_numeric(df["coverage_percent"], errors="coerce").fillna(0)
df = df.sort_values("coverage_percent", ascending=False).reset_index(drop=True)
def make_label(row):
return (
f"<b>{row['subject_class']}</b> "
f"<span style='color:#888;'></span> "
f"<i>{row['property']}</i> "
f"<span style='color:#888;'></span> "
f"<b>{row['object_class']}</b>"
)
df["styled_label"] = df.apply(make_label, axis=1)
text_positions = ["outside" if v < 95 else "inside" for v in df["coverage_percent"]]
custom_colorscale = [
[0.0, "#d36e61"],
[0.4, "#e5cdbd"],
[0.7, "#e8e4cf"],
[1.0, "#c3d9c0"],
]
# Figure sizing
bar_height = 26
fig_height = min(2000, bar_height * len(df) + 200)
fig = go.Figure(
go.Bar(
x=df["coverage_percent"],
y=df["styled_label"],
orientation="h",
text=[f"{v:.1f}%" for v in df["coverage_percent"]],
textposition=text_positions,
marker={
"color": df["coverage_percent"],
"colorscale": custom_colorscale,
"cmin": 0,
"cmax": 100,
"line": {"color": "white", "width": 0.6},
},
hovertemplate="<b>%{y}</b><br>Coverage: %{x:.1f}%<extra></extra>",
)
)
fig.update_layout(
title={
"text": f"Schema Pattern Coverage for {dataset_name}",
"x": 0.5,
"font": {"size": 18},
},
xaxis={
"title": "Coverage (%)",
"range": [0, 100], # fixed x-axis range
"ticksuffix": "%",
"showgrid": True,
"gridcolor": "rgba(220,220,220,0.3)",
},
yaxis={
"title": "",
"autorange": "reversed",
"automargin": True,
"fixedrange": False, # allow vertical zoom/pan
},
template="plotly_white",
autosize=True, # allow figure to scale with container
height=fig_height, # base height (will scale)
margin={"t": 80, "b": 50, "l": 480, "r": 150}, # extra right margin for text
plot_bgcolor="white",
paper_bgcolor="white",
)
# Disable horizontal zoom/pan
fig.update_xaxes(fixedrange=True)
# Show figure with config for HTML export compatibility
fig.show(
config={
"scrollZoom": True,
"responsive": True,
"toImageButtonOptions": {
"format": "png",
"filename": f"{dataset_name}_schema_coverage",
"height": fig_height,
"width": 600,
"scale": 1,
},
}
)
else:
display(Markdown("**No coverage data to visualize**"))
LinkML (derived from JSON-LD)¶
InĀ [13]:
# Generate LinkML directly from JSON-LD with custom schema URI
print("Regenerating LinkML schema from JSON-LD with custom schema URI...")
schema_name = f"{dataset_name}_schema"
custom_schema_uri = (
f"http://jmillanacosta.github.io/rdfsolve/{dataset_name}/linkml" # User-definable base URI
)
yaml_text = vp.to_linkml_yaml(
schema_name=schema_name,
schema_description=f"LinkML schema for {dataset_name} generated from JSON-LD",
schema_base_uri=custom_schema_uri,
filter_void_nodes=True,
)
# Save to LinkML YAML
linkml_file = os.path.join(exports_path, f"{dataset_name}_linkml_schema.yaml")
with open(linkml_file, "w", encoding="utf-8") as f:
f.write(yaml_text)
print(f"LinkML YAML saved to: {linkml_file}")
Regenerating LinkML schema from JSON-LD with custom schema URI... 2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Translocation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Translocation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:21 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:22 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:23 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ontologyTag: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ontologyTag: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbInChIKey: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbInChIKey: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbLipidMaps: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbLipidMaps: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChemspider: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChemspider: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:24 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
LinkML YAML saved to: /home/javi/rdfsolve-1/notebooks/01_schema_extraction/../../docs/data/schema_extraction/wikipathways/wikipathways_linkml_schema.yaml
InĀ [14]:
from linkml.generators.erdiagramgen import ERDiagramGenerator
from linkml_runtime.utils.schemaview import SchemaView
sv = SchemaView(linkml_file)
linkml_schema = sv.schema
display(
Markdown(
f"**Parsed LinkML schema:** Classes = {len(sv.all_classes())}, Slots = {len(sv.all_slots())}"
)
)
# Build and display a Mermaid class diagram for the aopwikirdf LinkedML
mermaid_code = ERDiagramGenerator(linkml_file).serialize()
display(Markdown(mermaid_code))
Parsed LinkML schema: Classes = 45, Slots = 39
erDiagram
DcatDistribution {
}
FoafImage {
}
FoafPerson {
}
GpmlAnchor {
}
GpmlComment {
}
GpmlDataNode {
}
GpmlGraphicalLine {
}
GpmlGroup {
}
GpmlInfoBox {
}
GpmlInteraction {
}
GpmlLabel {
}
GpmlPoint {
}
GpmlPublicationXref {
}
GpmlShape {
}
GpmlState {
}
OwlAnnotationProperty {
}
OwlAxiom {
}
OwlClass {
}
OwlDatatypeProperty {
}
OwlObjectProperty {
}
OwlOntology {
}
OwlRestriction {
}
SkosCollection {
}
SkosConceptScheme {
}
VoidDataset {
}
VoidDatasetDescription {
}
VoidLinkset {
}
WpBinding {
}
WpCatalysis {
}
WpComplex {
}
WpComplexBinding {
}
WpConversion {
}
WpDataNode {
}
WpDirectedInteraction {
}
WpGeneProduct {
}
WpInhibition {
}
WpInteraction {
}
WpMetabolite {
}
WpPathway {
}
WpProtein {
}
WpPublicationReference {
}
WpRna {
}
WpStimulation {
}
WpTranscriptionTranslation {
}
WpTranslocation {
}
GpmlAnchor ||--|o GpmlGroup : "dcterms_is_Part_Of"
GpmlAnchor ||--|o OwlClass : "rdf_type"
GpmlComment ||--|o GpmlGroup : "dcterms_is_Part_Of"
GpmlDataNode ||--|o GpmlComment : "gpml_has_Comment"
GpmlDataNode ||--|o GpmlGroup : "dcterms_is_Part_Of"
GpmlDataNode ||--|o GpmlPublicationXref : "gpml_has_Publication_Xref"
GpmlGraphicalLine ||--|o GpmlComment : "gpml_has_Comment"
GpmlInfoBox ||--|o OwlClass : "rdf_type"
GpmlInteraction ||--|o GpmlComment : "gpml_has_Comment"
GpmlInteraction ||--|o GpmlGroup : "dcterms_is_Part_Of"
GpmlLabel ||--|o GpmlPublicationXref : "gpml_has_Publication_Xref"
GpmlLabel ||--|o OwlClass : "rdf_type"
GpmlPoint ||--|o GpmlGroup : "dcterms_is_Part_Of"
GpmlPoint ||--|o OwlClass : "rdf_type"
GpmlPublicationXref ||--|o GpmlGroup : "dcterms_is_Part_Of"
GpmlShape ||--|o GpmlComment : "gpml_has_Comment"
GpmlShape ||--|o GpmlPublicationXref : "gpml_has_Publication_Xref"
GpmlState ||--|o GpmlPublicationXref : "gpml_has_Publication_Xref"
OwlAxiom ||--|o OwlAnnotationProperty : "oboinowl_has_Synonym_Type"
OwlClass ||--|o OwlAnnotationProperty : "oboinowl_in_Subset"
OwlClass ||--|o SkosConceptScheme : "skos_in_Scheme"
OwlDatatypeProperty ||--|o SkosConceptScheme : "skos_in_Scheme"
OwlObjectProperty ||--|o SkosConceptScheme : "skos_in_Scheme"
OwlRestriction ||--|o OwlObjectProperty : "owl_on_Property"
SkosCollection ||--|o FoafImage : "foaf_img"
SkosCollection ||--|o WpPathway : "dc_identifier"
SkosCollection ||--|o WpPublicationReference : "dcterms_references"
VoidDataset ||--|o DcatDistribution : "dcat_distribution"
VoidDataset ||--|o OwlClass : "dcterms_subject"
VoidDataset ||--|o OwlOntology : "void_vocabulary"
VoidDataset ||--|o VoidLinkset : "void_subset"
VoidDataset ||--|o WpProtein : "void_example_Resource"
VoidDatasetDescription ||--|o VoidDataset : "foaf_primary_Topic"
VoidLinkset ||--|o OwlObjectProperty : "void_link_Predicate"
WpBinding ||--|o GpmlDataNode : "wp_is_About"
WpBinding ||--|o GpmlGroup : "dcterms_is_Part_Of"
WpBinding ||--|o WpDataNode : "wp_participants"
WpBinding ||--|o WpDirectedInteraction : "wp_target"
WpBinding ||--|o WpPublicationReference : "dcterms_references"
WpBinding ||--|o WpRna : "wp_source"
WpCatalysis ||--|o GpmlGroup : "dcterms_is_Part_Of"
WpCatalysis ||--|o WpDataNode : "wp_participants"
WpCatalysis ||--|o WpDirectedInteraction : "wp_target"
WpCatalysis ||--|o WpPublicationReference : "dcterms_references"
WpCatalysis ||--|o WpRna : "wp_source"
WpComplex ||--|o GpmlGroup : "dcterms_is_Part_Of"
WpComplex ||--|o OwlClass : "rdf_type"
WpComplex ||--|o WpDataNode : "wp_bdb_Reactome"
WpComplex ||--|o WpDataNode : "wp_participants"
WpComplex ||--|o WpGeneProduct : "wp_bdb_Complex_Portal"
WpComplex ||--|o WpGeneProduct : "wp_bdb_Hgnc_Symbol"
WpComplex ||--|o WpGeneProduct : "wp_bdb_Uniprot"
WpComplex ||--|o WpPathway : "wp_bdb_Ensembl"
WpComplex ||--|o WpProtein : "wp_bdb_Entrez_Gene"
WpComplex ||--|o WpPublicationReference : "dcterms_bibliographic_Citation"
WpComplex ||--|o WpPublicationReference : "dcterms_references"
WpComplexBinding ||--|o GpmlDataNode : "wp_is_About"
WpComplexBinding ||--|o GpmlGroup : "dcterms_is_Part_Of"
WpComplexBinding ||--|o OwlClass : "rdf_type"
WpComplexBinding ||--|o WpDataNode : "wp_participants"
WpConversion ||--|o GpmlDataNode : "wp_is_About"
WpConversion ||--|o GpmlGroup : "dcterms_is_Part_Of"
WpConversion ||--|o WpDataNode : "wp_participants"
WpConversion ||--|o WpDirectedInteraction : "wp_target"
WpConversion ||--|o WpPublicationReference : "dcterms_references"
WpConversion ||--|o WpRna : "wp_source"
WpDataNode ||--|o GpmlGroup : "dcterms_is_Part_Of"
WpDataNode ||--|o OwlClass : "rdf_type"
WpDataNode ||--|o WpDataNode : "rdfs_see_Also"
WpDataNode ||--|o WpDataNode : "wp_bdb_Lipid_Maps"
WpDataNode ||--|o WpDataNode : "wp_bdb_Reactome"
WpDataNode ||--|o WpDataNode : "wp_participants"
WpDataNode ||--|o WpMetabolite : "wp_bdb_Ch_EBI"
WpDataNode ||--|o WpMetabolite : "wp_bdb_Hmdb"
WpDataNode ||--|o WpMetabolite : "wp_bdb_Kegg_Compound"
WpDataNode ||--|o WpPathway : "dc_identifier"
WpDataNode ||--|o WpPathway : "wp_bdb_Ensembl"
WpDataNode ||--|o WpProtein : "wp_bdb_Entrez_Gene"
WpDataNode ||--|o WpPublicationReference : "dcterms_bibliographic_Citation"
WpDirectedInteraction ||--|o GpmlDataNode : "wp_is_About"
WpDirectedInteraction ||--|o GpmlGroup : "dcterms_is_Part_Of"
WpDirectedInteraction ||--|o OwlClass : "rdf_type"
WpDirectedInteraction ||--|o WpDataNode : "wp_bdb_Reactome"
WpDirectedInteraction ||--|o WpDataNode : "wp_participants"
WpDirectedInteraction ||--|o WpDirectedInteraction : "wp_target"
WpDirectedInteraction ||--|o WpPublicationReference : "dcterms_references"
WpDirectedInteraction ||--|o WpRna : "wp_source"
WpGeneProduct ||--|o FoafPerson : "dc_creator"
WpGeneProduct ||--|o GpmlGroup : "dcterms_is_Part_Of"
WpGeneProduct ||--|o WpGeneProduct : "wp_bdb_Complex_Portal"
WpGeneProduct ||--|o WpGeneProduct : "wp_bdb_Uniprot"
WpGeneProduct ||--|o WpPathway : "dc_identifier"
WpGeneProduct ||--|o WpPathway : "wp_bdb_Ensembl"
WpGeneProduct ||--|o WpProtein : "wp_bdb_Entrez_Gene"
WpInhibition ||--|o GpmlGroup : "dcterms_is_Part_Of"
WpInhibition ||--|o OwlClass : "rdf_type"
WpInhibition ||--|o WpDataNode : "wp_participants"
WpInhibition ||--|o WpDirectedInteraction : "wp_target"
WpInhibition ||--|o WpMetabolite : "wp_bdb_Hmdb"
WpInhibition ||--|o WpRna : "wp_source"
WpInteraction ||--|o WpDataNode : "wp_bdb_Reactome"
WpInteraction ||--|o WpDataNode : "wp_participants"
WpInteraction ||--|o WpDirectedInteraction : "wp_target"
WpInteraction ||--|o WpPublicationReference : "dcterms_bibliographic_Citation"
WpInteraction ||--|o WpPublicationReference : "dcterms_references"
WpInteraction ||--|o WpRna : "wp_source"
WpMetabolite ||--|o GpmlGroup : "dcterms_is_Part_Of"
WpMetabolite ||--|o WpDataNode : "rdfs_see_Also"
WpMetabolite ||--|o WpDataNode : "wp_bdb_Reactome"
WpMetabolite ||--|o WpMetabolite : "wp_bdb_Chemspider"
WpMetabolite ||--|o WpMetabolite : "wp_bdb_Hmdb"
WpMetabolite ||--|o WpMetabolite : "wp_bdb_In_Ch_IKey"
WpMetabolite ||--|o WpMetabolite : "wp_bdb_Kegg_Compound"
WpMetabolite ||--|o WpPathway : "dc_identifier"
WpPathway ||--|o GpmlDataNode : "wp_is_About"
WpPathway ||--|o GpmlGroup : "dcterms_is_Part_Of"
WpPathway ||--|o OwlClass : "wp_ontology_Tag"
WpPathway ||--|o WpGeneProduct : "wp_bdb_Hgnc_Symbol"
WpPathway ||--|o WpGeneProduct : "wp_bdb_Uniprot"
WpPathway ||--|o WpPathway : "dc_identifier"
WpPathway ||--|o WpPathway : "wp_bdb_Ensembl"
WpPathway ||--|o WpPublicationReference : "cito_cites"
WpPathway ||--|o WpPublicationReference : "dcterms_references"
WpProtein ||--|o GpmlGroup : "dcterms_is_Part_Of"
WpProtein ||--|o OwlClass : "rdf_type"
WpProtein ||--|o WpDataNode : "wp_bdb_Reactome"
WpProtein ||--|o WpGeneProduct : "wp_bdb_Hgnc_Symbol"
WpProtein ||--|o WpGeneProduct : "wp_bdb_Uniprot"
WpProtein ||--|o WpMetabolite : "wp_bdb_Ch_EBI"
WpProtein ||--|o WpPathway : "dc_identifier"
WpProtein ||--|o WpPathway : "wp_bdb_Ensembl"
WpProtein ||--|o WpProtein : "wp_bdb_Entrez_Gene"
WpPublicationReference ||--|o GpmlGroup : "dcterms_is_Part_Of"
WpRna ||--|o GpmlGroup : "dcterms_is_Part_Of"
WpRna ||--|o WpGeneProduct : "wp_bdb_Hgnc_Symbol"
WpRna ||--|o WpGeneProduct : "wp_bdb_Uniprot"
WpRna ||--|o WpMetabolite : "wp_bdb_Ch_EBI"
WpRna ||--|o WpMetabolite : "wp_bdb_Kegg_Compound"
WpRna ||--|o WpPathway : "dc_identifier"
WpRna ||--|o WpPathway : "wp_bdb_Ensembl"
WpRna ||--|o WpProtein : "wp_bdb_Entrez_Gene"
WpRna ||--|o WpPublicationReference : "dcterms_references"
WpStimulation ||--|o GpmlDataNode : "wp_is_About"
WpStimulation ||--|o WpDataNode : "wp_participants"
WpStimulation ||--|o WpDirectedInteraction : "wp_target"
WpStimulation ||--|o WpRna : "wp_source"
WpTranscriptionTranslation ||--|o WpDataNode : "wp_participants"
WpTranscriptionTranslation ||--|o WpDirectedInteraction : "wp_target"
WpTranslocation ||--|o WpDataNode : "wp_participants"
InĀ [15]:
json_path = os.path.join(exports_path, f"{dataset_name}_schema.json")
csv_path = os.path.join(exports_path, f"{dataset_name}_schema.csv")
# Export CSV from frequencies
frequencies_df.to_csv(csv_path, index=False)
# Export JSON derived from JSON-LD (maintains consistency)
with open(json_path, "w", encoding="utf-8") as fh:
json.dump(vp.to_json(filter_void_nodes=True), fh, indent=2)
print(f"CSV exported to: {csv_path}")
print(f"JSON exported to: {json_path}")
2026-01-16 14:12:25 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:25 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:25 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:25 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:25 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:25 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:25 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:25 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:25 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:25 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Translocation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Translocation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:26 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ontologyTag: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ontologyTag: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbInChIKey: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbInChIKey: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbLipidMaps: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbLipidMaps: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChemspider: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChemspider: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbReactome: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Translocation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Translocation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:27 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#participants: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#source: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbComplexPortal: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEnsembl: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbEntrezGene: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbUniprot: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHmdb: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbKeggCompound: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#isAbout: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ComplexBinding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:28 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#TranscriptionTranslation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Inhibition: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#target: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Stimulation: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Conversion: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DirectedInteraction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Binding: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Catalysis: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Interaction: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChEBI: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#ontologyTag: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#ontologyTag: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Rna: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#GeneProduct: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Complex: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbHgncSymbol: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbInChIKey: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbInChIKey: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbLipidMaps: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbLipidMaps: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#DataNode: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChemspider: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#bdbChemspider: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Metabolite: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Protein: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#Pathway: 'in <string>' requires string as left operand, not NoneType
2026-01-16 14:12:29 DEBUG rdfsolve.parser: Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
DEBUG:rdfsolve.parser:Bioregistry failed for http://vocabularies.wikipathways.org/wp#PublicationReference: 'in <string>' requires string as left operand, not NoneType
CSV exported to: /home/javi/rdfsolve-1/notebooks/01_schema_extraction/../../docs/data/schema_extraction/wikipathways/wikipathways_schema.csv
JSON exported to: /home/javi/rdfsolve-1/notebooks/01_schema_extraction/../../docs/data/schema_extraction/wikipathways/wikipathways_schema.json
InĀ [16]:
# Export collected SPARQL queries as TTL
queries_path = os.path.join(exports_path, f"{dataset_name}_sparql_queries.ttl")
queries = SparqlHelper.get_collected_queries()
if queries:
ttl_content = SparqlHelper.export_queries_as_ttl(
output_file=queries_path,
base_uri=f"https://github.com/jmillanacosta/rdfsolve/sparql/{dataset_name}/",
dataset_name=dataset_name,
)
print(f"Exported {len(queries)} SPARQL queries to: {queries_path}")
else:
print("No SPARQL queries were collected")
Exported 590 SPARQL queries to: /home/javi/rdfsolve-1/notebooks/01_schema_extraction/../../docs/data/schema_extraction/wikipathways/wikipathways_sparql_queries.ttl